/* common shared style */
body{
    font-family: 'Lato',sans-serif;
    font-family: 'Open Sans', sans-serif;
}

.text-primary{
    color: #FD6E0A;
}

.btn-primary{
    border-radius: 5px;
    background-color: #FD6E0A;
    border: 0px;
    color:#FFF;
    font-size: 20px;
    font-weight: 700;
    padding: 15px 35px;
}
.section-title{
    color:#181818;
    text-align: center;
    font-size: 35px;
    font-weight: 700;
}
.section-description{
    color: #757575;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
}
/* nav related style */
nav{
    display:flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 200px;
}
.nav-title{
    color:#181818;
    font-size: 45px;
    font-weight: 800;
}
nav > ul{
    display: flex;
    align-items: center;
}

nav li{
    list-style: none;
    margin-right: 50px;
    color:#474747;
}

nav a{
    text-decoration: none;
}

/* header related style */

.header{
    background-color: #FFF8F3;
    background-image: url(../images/header_bg.png) ,url(../images/developer.png);
    background-repeat: no-repeat;
    background-position: bottom right, top left;
}

.banner{
    padding: 30px 30px 0px 150px;
    display: flex;
    align-items: center;
    justify-content:space-between;
}
.banner-content{
    max-width: 585px;
}
.banner .profile-pic{
    width: 500px;
}
.banner-greeting{
    font-size: 45px;
    color:#474747;
    margin-bottom: 0px;
}

.banner-title{
    font-size: 85px;
    font-weight: 700;
    margin-top: 5px;
    margin-bottom: 20px;
}

.banner-description{
    color:#757575;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
}

/* main section style */
main{
    max-width: 1140px;
    margin: 0 auto;
}
main section{
    margin-top: 130px;
}
/* about section style */
.about{
    padding: 130px;
    text-align: center;
    border-radius: 10px;
    background-color: #FFF8F3;
    margin: 130px 0px;
}
.about-info-container{
    display: flex;
    justify-content: space-around;
}
.about-info{
    text-align: center;
}
.info-title{
    color: #757575;
}
.info-description{
    color: #211919;
    font-size: 20px;
    font-weight: 400;
}
/* skills related styles */
#description{
    padding: 30px 150px;
}
.skills-container{
    display: flex;
    gap: 24px;
}
.skill{
    padding: 30px;
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 6px 50px 0px rgba(0, 0, 0, 0.06);
}

.skill-description{
    color: #757575;
    font-size: 16px;
    font-weight: 400;
} 
/* resume section style */
.resume-column-title{
    color: #474747;
    font-size: 30px;
    font-weight: 700;
}
.resum-container{
    display: flex;
    gap: 55px;
}

.resume-item-title{
    color: #474747;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.resume-item-description{
    color:  #757575;
    font-size: 16px;
    font-weight: 400;
}

.resume-item-institute{
    color: var(--dark-03, #757575);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0px;
}

.resume-container hr{
    margin: 30px;
}

.Download-Cv{
    text-align: center;
    margin-top: 50px;
}

/* footer related style */

footer{
    display: flex;
    gap: 115px;
    background-color: #FFF8F3;
    margin-top: 100px;
    padding: 130px 200px;
}

.footer-column{
    width: 50%;
}

/* social links */
.social-link a{
    margin-right: 25px;
}

.contact input[type="text"],.contact input[type="email"], textarea{
    display: block;
    margin-bottom: 30px;
    padding: 18px 35px;
    color: #757575;
    font-size: 16px;
    border-radius: 5px;
    background: #FFF;
    border: 0px;
    width: 100%;
}

.copy-class{
    font-size: 20px;
    color: rgb(225, 26, 36);
    text-align: center;
}


